There are new condition names (signals) that can be caught when using EIEIO.
This signal is called when an attempt to reference a slot in an obj-or-class is made, and the slot is not defined for it.
This signal is called when method is called, with arguments and nothing is resolved. This occurs when method has been defined, but the arguments make it impossible for EIEIO to determine which method body to run.
To prevent this signal from occurring in your class, implement the method
no-applicable-methodfor your class. This method is called when to throw this signal, so implementing this for your class allows you block the signal, and perform some work.
This signal is called if the function
call-next-methodis called and there is no next method to be called.Overload the method
no-next-methodto protect against this signal.